home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.xsave / 000216_fdc@panix.com_Fri Nov 20 17:07:46 2009.msg < prev   
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader1.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: C-Kermit 9.0 first Alpha test
  5. Date: Fri, 20 Nov 2009 17:50:44 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 46
  8. Message-ID: <slrnhgdlnj.444.fdc@panix2.panix.com>
  9. References: <slrnhgd7p1.6r9.fdc@panix2.panix.com> <877a104f-89a0-4c2d-938c-9bf79f902a43@l2g2000yqd.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix2.panix.com
  12. X-Trace: reader1.panix.com 1258739444 22799 166.84.1.2 (20 Nov 2009 17:50:44 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Fri, 20 Nov 2009 17:50:44 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15833
  17.  
  18. On 2009-11-20, Steven Schweda <sms.antinode@gmail.com> wrote:
  19. : Frank da Cruz wrote:
  20. :    There are a few more things to look into, but for a start:
  21. :
  22. : ALP $ gdiff -u ckuusy.c_orig ckuusy.c
  23. :
  24. Thanks, I was staring right at that spot without seeing it.  I should
  25. have put on my special #ifdef glasses...
  26.  
  27. :  #endif /* NOCMDL */
  28. : -
  29. : -#ifdef VMS
  30. : -/* This is the most horrible hack ever */
  31. : -}
  32. : -#endif /* VMS */
  33. :
  34. : (Well if it wasn't, it certainly was in the running.)
  35. :
  36. In the edit history I mentioned the "old LISP trick", I don't know if
  37. anybody still remembers it but if your LISP program didn't "compile",
  38. you put a card full of right parens at the end and it fed it through
  39. the reader again.
  40.  
  41. : I can't remember if these are old or new (or fixed before or not):
  42. :
  43. : #define des_cblock DES_cblock
  44. : ...................^
  45. : %CC-W-MACROREDEF, The redefinition of the macro "des_cblock" conflicts
  46. : with a current definition because the replacement lists differ...
  47. :
  48. I'm not sure why this is even being picked up unless a secure build
  49. is being attempted.  In that case, there are some things to be aware
  50. of.  First, OpenSSL changed the names of the DES routines between
  51. 0.9.6 and 0.9.7; it might be necessary to add -DOPENSSL_097 to the
  52. CC flags.  Second (probably not relevant in this case), OS vendors are
  53. starting to remove DES encryption from all their products.
  54.  
  55. : I'll try to look at it when I get a chance.
  56. :
  57. Thanks.  I didn't even have an opportunity to try a VMS build until
  58. yesterday.  When I finally got it to compile at the last minute I tried an
  59. FTP command but got the external FTP rather than the built-in one, even
  60. though your code is there.  I must have missed a command-line option in 
  61. the build.
  62.  
  63. - Frank